- Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy path880. Decoded String at Index_test.go
68 lines (54 loc) · 939 Bytes
/
880. Decoded String at Index_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package leetcode
import (
"fmt"
"testing"
)
typequestion880struct {
para880
ans880
}
// para 是参数
// one 代表第一个参数
typepara880struct {
sstring
kint
}
// ans 是答案
// one 代表第一个答案
typeans880struct {
onestring
}
funcTest_Problem880(t*testing.T) {
qs:= []question880{
{
para880{"aw4eguc6cs", 41},
ans880{"a"},
},
{
para880{"vk6u5xhq9v", 554},
ans880{"h"},
},
{
para880{"leet2code3", 10},
ans880{"o"},
},
{
para880{"ha22", 5},
ans880{"h"},
},
{
para880{"a2345678999999999999999", 1},
ans880{"a"},
},
{
para880{"y959q969u3hb22odq595", 222280369},
ans880{"q"},
},
}
fmt.Printf("------------------------Leetcode Problem 880------------------------\n")
for_, q:=rangeqs {
_, p:=q.ans880, q.para880
fmt.Printf("【input】:%v 【output】:%v\n", p, decodeAtIndex(p.s, p.k))
}
fmt.Printf("\n\n\n")
}